home *** CD-ROM | disk | FTP | other *** search
/ This Disc Bytes! / Power Computing - The Disc 2 - This Disc Bytes.ISO / mac / CodeWarrior 7 Lite for 68K / MacOS Examples / MW Hello World / Hello World.c next >
C/C++ Source or Header  |  1995-12-05  |  518b  |  18 lines

  1. /****************************************************************/
  2. /* Purpose..: Standard "Hello world" example.                   */
  3. /* Input....: void                                              */
  4. /* Returns..: void                                              */
  5. /****************************************************************/
  6.  
  7. /* CodeWarrior Lite
  8.  * January 1996
  9.  * © 1996 Metrowerks, Corp.
  10.  */
  11.  
  12. #include <stdio.h>
  13.     
  14. void main(void)
  15. {    
  16.     printf("Hello World!\n");
  17.     printf("Welcome to CodeWarrior Lite!\n");
  18. }